home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-24 | 1.8 KB | 71 lines | [TEXT/MPS ] |
- ;
- ; File: OSAComp.a
- ;
- ; Contains: AppleScript Component Implementor's Interfaces.
- ;
- ; Version: Technology: AppleScript 1.1
- ; Package: Universal Interfaces 2.2 in “MPW” on ETO #20
- ;
- ; Copyright: © 1984-1995 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Bugs?: If you find a problem with this file, use the Apple Bug Reporter
- ; stack. Include the file and version information (from above)
- ; in the problem description and send to:
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__OSACOMP__') = 'UNDEFINED' THEN
- __OSACOMP__ SET 1
-
-
- IF &TYPE('__APPLEEVENTS__') = 'UNDEFINED' THEN
- include 'AppleEvents.a'
- ENDIF
- ; include 'Errors.a' ;
- ; include 'ConditionalMacros.a' ;
- ; include 'Types.a' ;
- ; include 'Memory.a' ;
- ; include 'MixedMode.a' ;
- ; include 'OSUtils.a' ;
- ; include 'Events.a' ;
- ; include 'Quickdraw.a' ;
- ; include 'QuickdrawText.a' ;
- ; include 'EPPC.a' ;
- ; include 'AppleTalk.a' ;
- ; include 'Files.a' ;
- ; include 'Finder.a' ;
- ; include 'PPCToolbox.a' ;
- ; include 'Processes.a' ;
- ; include 'Notification.a' ;
-
- IF &TYPE('__OSA__') = 'UNDEFINED' THEN
- include 'OSA.a'
- ENDIF
- ; include 'AEObjects.a' ;
- ; include 'Components.a' ;
- ;
- ; pascal OSErr OSAGetStorageType(Handle scriptData, DescType *dscType)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION OSAGetStorageType
- ENDIF
-
- ;
- ; pascal OSErr OSAAddStorageType(Handle scriptData, DescType dscType)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION OSAAddStorageType
- ENDIF
-
- ;
- ; pascal OSErr OSARemoveStorageType(Handle scriptData)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION OSARemoveStorageType
- ENDIF
-
- ENDIF ; __OSACOMP__
-